home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Revista do CD-ROM 118
/
cd-rom 118.iso
/
aplic
/
open
/
openofficeorg4.cab
/
test_future2.py
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Python Source
|
2005-02-15
|
148 b
|
11 lines
"""This is a test"""
from __future__ import nested_scopes; import string
def f(x):
def g(y):
return x + y
return g
print f(2)(4)